home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980901-19981211 / 000376_news@newsmaster….columbia.edu _Tue Dec 1 10:10:43 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  1KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA10243
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 1 Dec 1998 10:10:43 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA24247
  7.     for kermit.misc@watsun; Tue, 1 Dec 1998 10:10:42 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Idle timeout in kermit?
  12. Date: 1 Dec 1998 15:10:42 GMT
  13. Organization: Columbia University
  14. Lines: 13
  15. Message-ID: <7410ti$r4t$1@apakabar.cc.columbia.edu>
  16. References: <slrn766vll.h2o.ak@colin.muc.de>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9583
  19.  
  20. In article <slrn766vll.h2o.ak@colin.muc.de>,
  21. Andi Kleen <ak@colin.muc.de> wrote:
  22. : Is there a way to do "if line idle XXX seconds do command foo" in ckermit6?
  23. : I tried to use set alarm, if alarm but it seems to be only a general purpose
  24. : timer with no idea about idle times. Is there a way in standard kermit?
  25. INPUT xxx
  26.  
  27. Waits up to xxx seconds for *any* character to arrive.  It fails if no
  28. characters arrive, and succeeds if any character does arrive within that
  29. interval.
  30.  
  31. - Frank